home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Acao / BlueCustom.swf / scripts / frame_630 / PlaceObject2_324_127 / CLIPACTIONRECORD onClipEvent(enterFrame).as next >
Text File  |  2008-09-25  |  1KB  |  38 lines

  1. onClipEvent(enterFrame){
  2.    yit = Math.floor(Math.random() * 91) + 30;
  3.    if(this._x < -2500)
  4.    {
  5.       this._x = 2900;
  6.       this._y = _root.depth._y + 2020 + yit;
  7.       die = 1;
  8.       this.gotoAndPlay(1);
  9.    }
  10.    if(this._x > 3000)
  11.    {
  12.       this._x = -2400;
  13.       this._y = _root.depth._y + 2020 + yit;
  14.       die = 1;
  15.       this.gotoAndPlay(1);
  16.    }
  17.    this._x += _global.xgo;
  18.    this._y += _global.ygo;
  19.    if(die == 1)
  20.    {
  21.       myRadians = Math.atan2(this._y - _root.player._y,this._x - _root.player._x);
  22.       xleg = this._x - _root.player._x;
  23.       yleg = this._y - _root.player._y;
  24.       scared = Math.sqrt(xleg * xleg + yleg * yleg);
  25.    }
  26.    if(_root.player.eat.hitTest(this.eat))
  27.    {
  28.       die = 0;
  29.       this.gotoAndPlay("die");
  30.       _global.boom = 1;
  31.       scoreity = 50;
  32.       _root.tools.instascore.text = "+" + scoreity;
  33.       _root.tools.instblock._alpha = 0;
  34.       _global.scoreit += 50;
  35.       _root.tools.bar1.gotoAndStop(_global.boost + 1);
  36.    }
  37. }
  38.